home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Animated Icons / Source / PP Basic Starter.h < prev    next >
Text File  |  1997-06-11  |  930b  |  30 lines

  1. // ===========================================================================
  2. //    PP Basic Starter.h        ©1994-1997 Metrowerks Inc. All rights reserved.
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LApplication.h>
  8.  
  9.  
  10. class    CPPStarterApp : public LApplication, LPeriodical {
  11. public:
  12.                         CPPStarterApp();        // constructor registers all PPobs
  13.     virtual             ~CPPStarterApp();        // stub destructor
  14.     
  15.         // this overriding function performs application functions
  16.         
  17.     virtual Boolean        ObeyCommand(CommandT inCommand, void* ioParam);    
  18.     
  19.         // this overriding function returns the status of menu items
  20.         
  21.     virtual void        FindCommandStatus(CommandT inCommand,
  22.                             Boolean &outEnabled, Boolean &outUsesMark,
  23.                             Char16 &outMark, Str255 outName);
  24.  
  25.     virtual    void    SpendTime(
  26.                             const EventRecord        &inMacEvent);
  27. protected:
  28.  
  29.     virtual void        StartUp();        // overriding startup functions
  30. };